home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000166_news@columbia.edu _Sun Dec 24 14:17:35 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id OAA23876 for <kermit.misc@watsun>; Sun, 24 Dec 1995 14:17:34 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id OAA28667 for kermit.misc@watsun; Sun, 24 Dec 1995 14:17:33 -0500 (EST)
  4. Path: news.columbia.edu!news.cs.columbia.edu!pipeline!newsjunkie.ans.net!howland.reston.ans.net!newsfeed.internetmci.com!in1.uu.net!news.u.washington.edu!cs124-7.u.washington.edu
  5. From: apardoe@u.washington.edu
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Failure to initialize
  8. Date: 24 Dec 1995 10:36:22 EDT
  9. Organization: BUILD 10-NOV-95 (0.9.7.6)
  10. Lines: 48
  11. Message-ID: <299721600038710apardoe@u.washington.edu>
  12. NNTP-Posting-Host: cs124-7.u.washington.edu
  13.  
  14. I'm having a rather odd problem with CKermit 191 for OS/2. I'll admit 
  15. right off that I don't have the book--I'd like to see Kermit run once 
  16. before I decide whether or not I want to "buy" it. 
  17.  
  18. CKermit will initialize my modem with the ATQ0H0 which generates "OK" (I
  19. assume from the modem) and then Modem Hangup OK. Then the initialization
  20. string is sent ATwhateverwhatever and there is no response from the 
  21. modem. My question is this: What is causing CKermit to "find" the modem 
  22. on the first string and preventing it from "finding" the modem on the 
  23. second? 
  24.  
  25. I'm running a Zoom V.34i 28.8 modem on COM 4 (2e8, IRQ3) with SIO 1.53 
  26. and OS/2 Warp fullpack no fixpacks. No other comm program has had a 
  27. problem finding my modem. 
  28.  
  29. For reference, this is the stuff that looked relevant from CKERMOD.INI:
  30.  
  31. set port 4
  32. (putting in port 4 or port com4 changes nothing)
  33.  
  34.    set modem hayes
  35.    set speed 57600
  36.    if fail set speed 38400
  37.    if fail set speed 19200
  38.    if fail set speed 9600
  39.    set dial speed-matching off
  40.  
  41. set dial init ATE1Q0V1N1W2X4Y0
  42. (I tried a variety of initialization strings both of my own devices and 
  43. from other communications packages. The one above just sets all the 
  44. options. It does set full messages ON.) 
  45.  
  46. (There's some code that I believe tells CKermit to skip to the OS/2 
  47. section and so here's the OS/2 section...) 
  48.  
  49. :OS/2                           ; OS/2 customizations...
  50. set modem hayes
  51. set port com4
  52. set speed 57600
  53. set flow rts/cts                ; It uses hardware flow control
  54. set terminal apc off            ; Change to ON if desired
  55. set server display on           ; Show file display in server mode too
  56.  
  57. Thanks, I'd appreciate knowing what's up. There seem to be no good comm 
  58. packages for OS/2 but Kermit looks unassuming and powerful...a rare 
  59. combination in '95. 
  60.  
  61. apardoe@u.washington.edu